home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 36 / Issue 36.iso / pc / iwks / Wap / NokiaToolkit2_0 / setup.exe / Disk1 / data1.cab / Sample_Files / deck2a.wml < prev    next >
Encoding:
Extensible Markup Language  |  2000-06-19  |  1.1 KB  |  63 lines

  1. <?xml version="1.0"?>
  2. <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
  3.  
  4. <wml>
  5.     
  6.     <template>
  7.         <do type="prev" name="Previous" label="Previous">
  8.             <prev/>
  9.         </do>
  10.     </template>
  11.  
  12.     <card id="card1" title="First Card" newcontext="true">
  13.     <p>
  14.  
  15.         Card 1 ... <br/>
  16.  
  17.         <do type="accept" name="two" label="Next Card">
  18.             <go href="#card2"/>
  19.         </do>
  20.  
  21.         <!-- Must override the DO/PREV in the template to
  22.              prevent the PREV element from going back to
  23.              the previous deck 
  24.         -->
  25.  
  26.         <do type="prev" name="Previous">
  27.             <noop/>
  28.         </do>
  29.  
  30.     </p>
  31.     </card>
  32.  
  33.     <card id="card2" title="Second Card">
  34.     <p>
  35.  
  36.         Card 2 ... <br/>
  37.  
  38.         <do type="accept" name="three" label="Next Card">
  39.             <go href="#card3"/>
  40.         </do>
  41.  
  42.     </p>
  43.     </card>
  44.  
  45.     <card id="card3" title="Third Card">
  46.     <p>
  47.  
  48.         Card 3 ... <br/>
  49.  
  50.         <!-- NOTE: the following DO element will go to a new
  51.                    deck.  The name of this deck is embedded
  52.                    in the URL. 
  53.         -->
  54.  
  55.         <do type="accept" name="deck2b" label="Next Deck">
  56.             <go href="deck2b.wml"/>
  57.         </do>
  58.  
  59.     </p>
  60.     </card>
  61.  
  62. </wml>
  63.